home *** CD-ROM | disk | FTP | other *** search
- ;
- ; SuperCalc3 Pop-up Menu Configuration
- ;
- Comment ("Configured for SuperCalc3")
-
- ;
- ; Parameters
- ;
- Sensitivity (13, 8) ; (Xinc, Yinc)
- Hysteresis (1, 1) ; (AutoX, AutoY)
- ReverseVideo (Yes) ; Menu is displayed in reverse video
- FixedMenu (Yes) ; Menu is in a fixed position
- MenuCenter (0, 12) ; (Col, Row) of menu center
- EnableBeep (Yes) ; Beeps if wrong button pressed with menu up
-
- ;
- ; Cursor Definitions
- ;
- ArrowKeys: Cursor
- (
- Left ([Left])
- Right ([Right])
- Up ([Up])
- Down ([Down])
- )
-
- ;
- ; Button Definitions
- ;
- LBM: Button (Menu(Main)) ; Left button, Main Menu
- LBC: Button (Menu(Calc)) ; Left button, Calc Menu
- LBF: Button (Menu(File)) ; Left button, File Menu
- LBV: Button (Menu(View)) ; Left button, View Menu
- MB: Button (Keys([Enter])) ; Middle button
- RB: Button (Keys([Esc])) ; Right button
-
- ;
- ; Menu Definitions
- ;
- Main: Menu
- (
- Title ("Main")
- Item ("Replicate", Keys("/R"))
- Item (":", Keys(":"))
- Item ("No Adjust", Keys("N"))
- Item ("Adjust", Keys("A"))
- Item ("Calc Menu", Menu(Calc), Button(LBC))
- Item ("File Menu", Menu(File), Button(LBF))
- Item ("View Menu", Menu(View), Button(LBV))
- Item ("More Menus", Menu(More))
- Item ("Edit", Keys("/E"))
- Item ("Blank", Keys("/B"))
- Item ("Delete", Menu(Delete))
- Item ("Insert", Menu(Insert))
- Item ("Change Window", Keys(";"))
- Item ("Home", Keys([Home]))
- )
-
- Calc: Menu
- (
- Title ("Calc")
- Item ("Sum(", Keys("Sum("))
- Item (":", Keys(":"))
- Item (")", Keys(")"))
- Item ("(", Keys("("))
- Item ("+", Keys("+"))
- Item ("-", Keys("-"))
- Item ("*", Keys("*"))
- Item ("/", Keys("/"))
- Item ("^", Keys("^"))
- Item ("Edit", Keys("/E"))
- Item ("Recalc", Keys("!"))
- Item ("Main Menu", Menu(Main), Button(LBM))
- )
-
- File: Menu
- (
- Title ("File")
- Item ("Load Current File", Keys("/L"[Esc]))
- Item ("Directory", Keys("/L"[Enter]))
- Item ("Load File", Keys("/L"))
- Item ("Save Current File", Keys("/S"[Esc]))
- Item ("Save File", Keys("/S"))
- Item ("Delete File", Keys("/DF"))
- Item ("Output Display", Keys("/OD"))
- Item ("Output Contents", Keys("/OC"))
- Item ("Zap", Keys("/Z"))
- Item ("Yes", Keys("Y"))
- Item ("Quit", Keys("/Q"))
- Item ("Main Menu", Menu(Main), Button(LBM))
- )
-
- View: Menu
- (
- Title ("View")
- Item ("View Current Graph", Keys("/V"[Enter]))
- Item ("Data Range", Keys("/VD"))
- Item ("View Commands", Keys("/V"))
- Item ("Graph Pie", Keys("/VGP"))
- Item ("Graph Bar", Keys("/VGB"))
- Item ("Graph Stacked Bar", Keys("/VGS"))
- Item ("Graph Line", Keys("/VGL"))
- Item ("Graph Hi-Lo", Keys("/VGH"))
- Item ("Graph X-Y", Keys("/VGX"))
- Item ("Graph Area", Keys("/VGA"))
- Item ("Options", Keys("/VO"))
- Item ("Main Menu", Menu(Main), Button(LBM))
- )
-
- More: Menu
- (
- Title ("More")
- Item ("Move", Keys("/M"))
- Item ("Protect", Keys("/P"))
- Item ("Unprotect", Keys("/U"))
- Item ("Window Menu", Menu(Window))
- Item ("Title Menu", Menu(Title))
- Item ("Format Menu", Menu(Format))
- Item ("Global Menu", Menu(Global))
- )
-
- Window: Menu
- (
- Title ("Window")
- Item ("Horizontal", Keys("/WH"))
- Item ("Vertical", Keys("/WV"))
- Item ("Clear", Keys("/WC"))
- Item ("Synchronized", Keys("/WS"))
- Item ("Unsynchronized", Keys("/WU"))
- )
-
- Title: Menu
- (
- Title ("Title")
- Item ("Horizontal", Keys("/TH"))
- Item ("Vertical", Keys("/TV"))
- Item ("Both", Keys("/TB"))
- Item ("Clear", Keys("/TC"))
- )
-
- Format: Menu
- (
- Title ("Format")
- Item ("Format Column", Keys("/FC"))
- Item ("Format Row", Keys("/FR"))
- Item ("Format Entry", Keys("/FE"))
- Item ("Define Format Table", Keys("/FD"))
- Item ("Format Column Width", Keys("/FC"[Enter]))
- )
-
- Global: Menu
- (
- Title ("Global")
- Item ("Global Command", Keys("/G"))
- Item ("Column Width", Keys("/FG"))
- Item ("Recalc Auto", Keys("/GRA"))
- Item ("Recalc Manual", Keys("/GRM"))
- Item ("Recalc Order Columns",Keys("/GC"))
- Item ("Recalc Order Rows", Keys("/GR"))
- Item ("Format General", Keys("/FGG"))
- Item ("Format Integer", Keys("/FGI"))
- Item ("Format Currency", Keys("/FG$"))
- Item ("Format Left", Keys("/FGL"))
- Item ("Format Right", Keys("/FGR"))
- Item ("Format Exponential", Keys("/FGE"))
- Item ("Format Default", Keys("/FGD"))
- )
-
- Insert: Menu
- (
- Title ("Insert")
- Item ("Row", Keys("/IR"))
- Item ("Column", Keys("/IC"))
- )
-
- Delete: Menu
- (
- Title ("Delete")
- Item ("Row", Keys("/DR"))
- Item ("Column", Keys("/DC"))
- )
-
-
- ;
- ; Mouse Definition
- ;
- Mouse
- (
- Left (LBM)
- Middle (MB)
- LeftRight(MB)
- Right (RB)
- Cursor (ArrowKeys)
- )